home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / DB_CLIPP / 1159.ZIP / CONFIG.BAT < prev    next >
DOS Batch File  |  1986-12-08  |  806b  |  31 lines

  1. ECHO OFF
  2. CLS
  3. BREAK ON
  4. IF "%1"=="" GOTO HELP
  5. IF "%1"=="B:" GOTO START
  6. IF "%1"=="b:" GOTO START
  7. IF "%1"=="C:" GOTO START
  8. IF "%1"=="c:" GOTO START
  9. IF "%1"=="D:" GOTO START
  10. IF "%1"=="d:" GOTO START
  11. IF "%1"=="E:" GOTO START
  12. IF "%1"=="e:" GOTO START
  13. IF "%1"=="F:" GOTO START
  14. IF "%1"=="f:" GOTO START
  15. :HELP
  16. ECHO To install a copy of CONFIG.SYS onto your fixed disk, you should type the
  17. ECHO word "CONFIG" followed by a space and then the drive designation of
  18. ECHO your fixed disk.  For example, if the drive designation for your fixed
  19. ECHO disk is "C:", then the proper command is the following:
  20. ECHO .
  21. ECHO                           CONFIG C:
  22. ECHO .
  23. GOTO END 
  24. :START 
  25. %1 
  26. CD\ 
  27. CLS
  28. COPY A:\CONFIG.SYS \/V  
  29. ECHO The file "CONFIG.SYS" has now been copied to your root directory.
  30. :END
  31.